Drop the GlowESP8266 folder into your .../Users/username/Documents/Arduino/libraries/ folder (or however it is setup on your computer). Use the example sketch called "Standalone". Most stuff is pretty self explanatory. 

Device is set up in AP mode under the name "Not Starbucks Wifi". I work on this code a lot at Starbucks so it was just something random to name it. Password is "password". The device is set up to be a "standalone" device and routes all DNS requests to itself, I commonly just use http://google.com/index.htm while I'm working and it routes things properly. The device uses a websocket to communicate between the web browser and the ESP. I'm not certain if I need to send ping/pong frames or not. I haven't had issues with the websocket disconnecting but I have the code commented out to send a ping frame every 30 seconds.

Currently, I have my code set up to receive MwM commands as binary data with a 0 prepending the command to denote it as a "raw command" or one that has it's length and CRC included and no further processing is needed and is ready to be sent out.

Redownloading Javascript libraries and other static files is a huge timewaste so I have jquery set up to be cached and have a simple example of how they work. It's currently set to 300 seconds (5 minutes) but should be much longer as I'm not going to be going in to change anything there.

There is code in there for playing and pausing/resuming shows but have decided to do that client side rather than serverside. I haven't had the time to pull that code out yet and reimpliment in Javascript.